主题
SHA系列哈希算法 - SHAHash
函数简介
使用SHA系列哈希算法对数据进行哈希计算。
接口名称
SHAHashDLL调用
c
long SHAHash(long instance, string source, int shaType);参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| instance | 长整数型 | OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。 |
| source | 字符串 | 要进行哈希计算的源数据。 |
| shaType | 整数型 | 哈希类型:0-MD5;1-SHA1;2-SHA256;3-SHA384;4-SHA512;5-SHA3-256;6-SHA3-384;7-SHA3-512。 |
示例
SDK 调用
cpp
#include "OLAPlugServer.h"
OLAPlugServer ola;
string hash = ola.SHAHash("hello ola", 2);csharp
using OLAPlug;
var ola = new OLAPlugServer();
string hash = ola.SHAHash("hello ola", 2);python
from OLAPlugServer import OLAPlugServer
ola = OLAPlugServer()
hash = ola.SHAHash("hello ola", 2)java
import com.olaplug.OLAPlugServer;
OLAPlugServer ola = new OLAPlugServer();
String hash = ola.SHAHash("hello ola", 2);cpp
var ola = com("OlaPlug.OlaSoft")
var hash = ola.SHAHash("hello ola", 2)vbscript
Set ola = CreateObject("OlaPlug.OlaSoft")
hash = ola.SHAHash("hello ola", 2)text
.局部变量 ola, OLAPlug
ola.创建 ()
hash = ola.SHAHash("hello ola", 2)aardio
import OLAPlugServer;
var ola = OLAPlugServer();
var hash = ola.SHAHash("hello ola", 2);text
变量 ola <类型 = OLAPlugServer>
ola = 新建 OLAPlugServer
文本型 hash = ola.SHAHash("hello ola", 2)cpp
#include "OLAPlugServer.h"
OLAPlugServer ola;
std::string hash = ola.SHAHash("hello ola", 2);原生 DLL 调用
cpp
long instance = CreateCOLAPlugInterFace();
long ptr = SHAHash(instance, "hello ola", 2);
if (ptr != 0) {
char buffer[4096] = {0};
GetStringFromPtr(ptr, buffer, sizeof(buffer));
FreeStringPtr(ptr);
}csharp
using System.Runtime.InteropServices;
using System.Text;
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int GetStringFromPtr(long ptr, StringBuilder lpString, int size);
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int FreeStringPtr(long ptr);
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern int GetStringSize(long ptr);
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern long CreateCOLAPlugInterFace();
[DllImport("OLAPlug_x64.dll", CallingConvention = CallingConvention.StdCall)]
static extern long SHAHash(long ola, string source, int shaType);
long instance = CreateCOLAPlugInterFace();
long ptr = SHAHash(instance, "hello ola", 2);
if (ptr != 0) {
StringBuilder sb = new StringBuilder(GetStringSize(ptr) + 1);
GetStringFromPtr(ptr, sb, sb.Capacity);
FreeStringPtr(ptr);
string hash = sb.ToString();
}python
from ctypes import CDLL, c_int, c_int64
ola = CDLL("OLAPlug_x64.dll")
ola.CreateCOLAPlugInterFace.restype = c_int64
instance = ola.CreateCOLAPlugInterFace()
ptr = ola.SHAHash(instance, b"hello ola", 2)返回值
| 返回值 | 说明 |
|---|---|
非 0 | 成功,返回 哈希后的数据的字符串指针。 |
0 | 失败。 |
注意事项
| 项目 | 说明 |
|---|---|
| 推荐使用SHA256或更高版本的哈希算法以确保安 | 推荐使用SHA256或更高版本的哈希算法以确保安全性。 |
